home *** CD-ROM | disk | FTP | other *** search
/ Delphi Developer's Kit 1996 / Delphi Developer's Kit 1996.iso / power / source21 / bmpdlg.pas < prev    next >
Pascal/Delphi Source File  |  1995-12-22  |  472b  |  31 lines

  1. unit Bmpdlg;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, StdCtrls, Buttons;
  8.  
  9. type
  10.   TNewBMPForm = class(TForm)
  11.     Label1: TLabel;
  12.     Label2: TLabel;
  13.     WidthEdit: TEdit;
  14.     HeightEdit: TEdit;
  15.     BitBtn1: TBitBtn;
  16.     BitBtn2: TBitBtn;
  17.   private
  18.     { Private declarations }
  19.   public
  20.     { Public declarations }
  21.   end;
  22.  
  23. var
  24.   NewBMPForm: TNewBMPForm;
  25.  
  26. implementation
  27.  
  28. {$R *.DFM}
  29.  
  30. end.
  31.